home *** CD-ROM | disk | FTP | other *** search
/ Champak 54 / Vol 54.iso / games / zman.swf / scripts / DefineSprite_319 / frame_6 / DoAction.as
Encoding:
Text File  |  2007-10-01  |  233 b   |  14 lines

  1. ran = random(4) + 2;
  2. this.onEnterFrame = function()
  3. {
  4.    if(ran - 1 == _parent.player._currentframe)
  5.    {
  6.       ran = random(4) + 2;
  7.    }
  8.    else
  9.    {
  10.       delete this.onEnterFrame;
  11.       this.gotoAndStop(ran);
  12.    }
  13. };
  14.